home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Development Platforms / Apple II / Apple II Sample Code / APW.SC / SC24Teach / Teach.p / UWindow.p < prev   
Encoding:
Text File  |  1990-06-24  |  1.0 KB  |  63 lines  |  [TEXT/pdos]

  1. {**********************************************************************
  2. {*
  3. {* Teach uWindow -- Version 3.0  (interface)
  4. {*
  5. {* Copyright (c)
  6. {* Apple Computer, Inc.  1986-1988
  7. {* All Rights Reserved.
  8. {*
  9. {* Developer Technical Support Apple II Sample Code
  10. {*
  11. {* This file contains the interface to the code which implements  
  12. {* windows in the Teach program.
  13. {*
  14. {**********************************************************************}
  15.  
  16. UNIT uWindow;
  17.  
  18. INTERFACE
  19.  
  20. USES
  21.  
  22.        types,
  23.        locator,
  24.        misctool,
  25.        quickdraw,
  26.        fonts,
  27.        MEMORY,
  28.        intMath,
  29.        events,
  30.        controls,
  31.        windows,
  32.        dialogs,
  33.        menus,
  34.        DESK,
  35.        STDFILE,
  36.        GSOS,
  37.        resources,
  38.        TextEdit,
  39.        PasLibIntf,
  40.        
  41.        
  42.        uGlobals,
  43.        uUtils;
  44.  
  45.  
  46. procedure setUpWindows;            {Initialize variables for stacking windows}
  47. procedure drawThisWindow;
  48. procedure doCloseTop;
  49. procedure doOpenWindow;
  50. procedure doNewWindow;
  51. procedure doSave;
  52. procedure doSaveAs;
  53.  
  54.  
  55. IMPLEMENTATION
  56.  
  57. {$I uWindow.inc.p }
  58.  
  59.  
  60.  
  61.  
  62. END.
  63.